home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / howtou_2 / readme.txt < prev    next >
Text File  |  1999-08-28  |  1KB  |  35 lines

  1. As a sequal of my previous message-box, I wrote MessageBox-Deluxe.
  2. It has more features than the other one, like:
  3.  * colors
  4.  * 2 fonts
  5.  * position of the message-box
  6.  
  7. From withing the main program:
  8. Call MBox(Form, Prompt, Caption1, Caption2, Caption3, Icon, Title,R-color, G-color, B-color, font1, font2, Xposition, Yposition)
  9.  
  10. As in the demonstration program, you could do something like this:
  11.  
  12. Call Mbox(Mform, "Do you want to do this ?", "I do", "No way !", "Cancel it", 5, "Programtitle", 100, 200, 128, "Times New Roman", "Comic Sans Serif", 3000, 4500)
  13.  
  14. The icons (9 pieces) are stored in an imagelist, so they can be easely
  15. accessed. You could store other icons there, of course. Just add the
  16. number when you call the MBox.
  17.  
  18. The returns are:
  19.        Message(0), Message(1), Message(2), who are by default all false
  20. Message(0) = true : first button has been clicked
  21. Message(1) = true : second button has been clicked
  22. Message(2) = true : third button has been clicked
  23. The messagebox won't go away unless you click one of the buttons.
  24.  
  25. If you enter a zero-string ("") for one of the captions, this button will not
  26. be showed (visible=false).
  27. The first button is ALWAYS present.
  28.  
  29. Use it as you like, but mention my name...
  30. If you have suggestions for improving this, let me know !
  31.  
  32. Have fun !
  33.  
  34. stephan.swertvaegher@planetinternet.be
  35.